5a58af2595cf25ab6723da710c427f00bb059f94,src/freenet/node/fcp/ClientPut.java,ClientPut,ClientPut,#SimpleFieldSet#FCPClient#,95
Before Change
this.client = client2;
origHandler = null;
String mimeType = fs.get("Metadata.ContentType");
getCHKOnly = Boolean.parseBoolean(fs.get("GetCHKOnly"));
boolean dontCompress = Boolean.parseBoolean(fs.get("DontCompress"));
int maxRetries = Integer.parseInt(fs.get("MaxRetries"));
clientToken = fs.get("ClientToken");
fromDisk = true;
After Change
this.client = client2;
origHandler = null;
String mimeType = fs.get("Metadata.ContentType");
if(fs.get("GetCHKOnly").equalsIgnoreCase("true")){
getCHKOnly = true;
}else{
getCHKOnly = false;
}
boolean dontCompress;
if(fs.get("DontCompress").equalsIgnoreCase("true")){
dontCompress = true;
}else{
dontCompress = false;